.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  .title-heading {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  }
  .section-text {
    margin-bottom: 20px;
  }
  .featured-container {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
  }
  .featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .watermark-text {
    position: absolute;
    top: 250px;
    left: 20%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
  }
  .section-heading {
    color: #007bff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .step-container {
    margin-bottom: 30px;
  }
  .step-number {
    font-size: 18px;
    color: #007bff;
    font-weight: bold;
  }
  .step-description {
    font-size: 16px;
  }
  .tip-container {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .tip-heading {
    font-size: 20px;
    color: #721c24;
    margin-top: 0;
  }
  .tip-text {
    font-size: 16px;
  }
  .adsense-ad {
    text-align: center;
    margin-bottom: 30px;
  }
  .tweet-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .tweet-button {
    background-color: #55acee;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .tweet-button:hover {
    background-color: #2795e9;
  }
  .author-bio {
    margin-top: 50px;
    border-top: 2px solid #007bff;
    padding-top: 20px;
    display: flex;
    align-items: center;
  }
  .author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
  }
  .author-info {
    flex-grow: 1;
  }
  .author-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
  }
  .author-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
  }
  .author-social-links {
    margin-top: 10px;
  }
  .social-link {
    display: inline-block;
    margin-right: 10px;
    color: #007bff;
    text-decoration: none;
  }
  .social-link:last-child {
    margin-right: 0;
  }